home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / GNU_Backgammon / gnubg-MAIN-20110822-setup.exe / {app} / met / met.xsl < prev    next >
Extensible Markup Language  |  2010-09-27  |  4KB  |  156 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2.  
  3.  
  4. <!-- 
  5.  
  6.      met.xsl
  7.  
  8.      by Joern Thyssen <jthyssen@dk.ibm.com>, 2002
  9.      This program is free software; you can redistribute it and/or modify
  10.      it under the terms of version 3 or later of the GNU General Public License as
  11.      published by the Free Software Foundation.
  12.      
  13.      This program is distributed in the hope that it will be useful,
  14.      but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.      GNU General Public License for more details.
  17.      
  18.      You should have received a copy of the GNU General Public License
  19.      along with this program; if not, write to the Free Software
  20.      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  
  22.  
  23.  
  24.      $Id: met.xsl,v 1.5 2010/09/27 06:29:28 plm Exp $
  25.  
  26.  -->     
  27.  
  28. <xsl:stylesheet version="1.0"
  29.                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  30.  
  31.   <xsl:output encoding="ISO-8859-1" 
  32.               indent="yes" 
  33.               method="html" 
  34.               omit-xml-declaration="yes" 
  35.               doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" 
  36.               doctype-system="http://www.w3.org/TR/html4/transitional.dtd"
  37.    />
  38.  
  39.  
  40.   <xsl:template match="/">
  41.     <html>
  42.       <xsl:apply-templates select=".//info" />
  43.  
  44.       <body>         
  45.  
  46.       <h1>Match equity table: <xsl:value-of select=".//info/name"/></h1>
  47.  
  48.       <h2>Description</h2>
  49.  
  50.       <p>
  51.       <xsl:apply-templates select=".//info/description" />
  52.       </p>
  53.  
  54.       <h2>Pre-Crawford table</h2>
  55.     
  56.       <xsl:apply-templates select=".//pre-crawford-table" />
  57.  
  58.       <h2>Post-Crawford table</h2>
  59.     
  60.       <xsl:apply-templates select=".//post-crawford-table" />
  61.  
  62.  
  63.       </body>
  64.     </html>
  65.   </xsl:template>
  66.  
  67.  
  68.   <xsl:template match="//info">
  69.     <head>
  70.        <xsl:apply-templates select="name" />
  71.     </head>
  72.   </xsl:template>
  73.   
  74.   <xsl:template match="//info/name">
  75.     <title>
  76.        Match equity table: <xsl:apply-templates />
  77.     </title>
  78.   </xsl:template>
  79.  
  80.  
  81.   <xsl:template match="//info/description">
  82.     <xsl:apply-templates />
  83.   </xsl:template>
  84.  
  85.   <xsl:template match="parameters">
  86.  
  87.      <xsl:for-each select="parameter">
  88.      <tr>
  89.        <td><xsl:value-of select="@name" /></td>
  90.        <td><xsl:apply-templates /></td>
  91.      </tr>
  92.      </xsl:for-each>
  93.   </xsl:template>
  94.  
  95.  
  96.   <xsl:template name="me">
  97.  
  98.   <!-- convert to percentages -->
  99.  
  100.   <xsl:choose>
  101.     <xsl:when test="current() >= 0.1">
  102.       <xsl:value-of select="format-number(100.0 * current(), '#0.0')" />
  103.     </xsl:when>
  104.     <xsl:otherwise>
  105.       <xsl:value-of select="format-number(100.0 * current(), '#0.00')" />
  106.     </xsl:otherwise>
  107.   </xsl:choose>
  108.  
  109.   </xsl:template>
  110.  
  111.  
  112.   <xsl:template name="table">
  113.   <xsl:choose>
  114.      <xsl:when test="@type = 'explicit'">
  115.      <table border="1" cellpadding="2">
  116.         <!-- table header -->
  117.  
  118.         <tr>
  119.         <th></th>
  120.         <xsl:for-each select="row[position()=1]/me">
  121.         <th><xsl:number value="position()" />-away</th>
  122.         </xsl:for-each>
  123.         </tr>
  124.  
  125.         <xsl:for-each select="row">
  126.         
  127.            <tr>
  128.               <td align="right"><strong><xsl:number value="position()" />-away</strong></td>
  129.            <xsl:for-each select="me">
  130.            <td align="right"><xsl:call-template name="me" /></td>
  131.            </xsl:for-each>
  132.            </tr>
  133.         </xsl:for-each>
  134.  
  135.      </table>
  136.      </xsl:when>
  137.   <xsl:otherwise>
  138.      <table border="1" cellpadding="2">
  139.         <tr><th>Parameter</th><th>Value</th></tr>
  140.         <tr><td>Name of generator</td><td><xsl:value-of select="@type" /></td></tr>
  141.         <xsl:apply-templates />
  142.      </table>
  143.   </xsl:otherwise>
  144.   </xsl:choose>
  145.   </xsl:template>
  146.  
  147.   <xsl:template match="//pre-crawford-table">
  148.   <xsl:call-template name="table" />
  149.   </xsl:template>
  150.  
  151.   <xsl:template match="//post-crawford-table">
  152.   <xsl:call-template name="table" />
  153.   </xsl:template>
  154.  
  155. </xsl:stylesheet>
  156.